home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / states / Transition.as < prev   
Text File  |  2009-02-12  |  467b  |  26 lines

  1. package mx.states
  2. {
  3.    import mx.core.mx_internal;
  4.    import mx.effects.IEffect;
  5.    
  6.    use namespace mx_internal;
  7.    
  8.    public class Transition
  9.    {
  10.       
  11.       mx_internal static const VERSION:String = "3.0.0.0";
  12.        
  13.       
  14.       public var effect:IEffect;
  15.       
  16.       public var toState:String = "*";
  17.       
  18.       public var fromState:String = "*";
  19.       
  20.       public function Transition()
  21.       {
  22.          super();
  23.       }
  24.    }
  25. }
  26.